home *** CD-ROM | disk | FTP | other *** search
- /* process.h
-
- Symbols and structures for process management.
-
- */
-
- /*
- * C/C++ Run Time Library - Version 9.0
- *
- * Copyright (c) 1987, 1998 by Borland International
- * All Rights Reserved.
- *
- */
- /* $Revision: 9.3 $ */
-
- #if !defined(__PROCESS_H)
- #define __PROCESS_H
-
- #ifndef ___STDDEF_H
- #include <_stddef.h>
- #endif
-
- #if !defined(RC_INVOKED)
-
- #if defined(__STDC__)
- #pragma warn -nak
- #endif
-
- #endif /* !RC_INVOKED */
-
- #ifdef __cplusplus
- namespace std {
- #endif /* __cplusplus */
-
- /* Modes available as first argument to the spawnxx functions. */
-
- #define P_WAIT 0 /* child runs separately, parent waits until exit */
- #define P_NOWAIT 1 /* both concurrent -- not implemented */
- #define P_OVERLAY 2 /* child replaces parent, parent no longer exists */
-
- #define P_NOWAITO 3 /* ASYNCH, toss RC */
- #define P_DETACH 4 /* DETACHED, toss RC */
-
- #define WAIT_CHILD 0
- #define WAIT_GRANDCHILD 1
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- int _RTLENTRY _EXPFUNC getpid(void);
- void _RTLENTRY _EXPFUNC abort(void);
- void _RTLENTRY _EXPFUNC _cexit(void);
- void _RTLENTRY _EXPFUNC _c_exit(void);
- int _RTLENTRY _EXPFUNC execl(const char * __path, const char * __arg0, ...);
- int _RTLENTRY _EXPFUNC execle(const char * __path, const char * __arg0, ...);
- int _RTLENTRY _EXPFUNC execlp(const char * __path, const char * __arg0, ...);
- int _RTLENTRY _EXPFUNC execlpe(const char * __path, const char * __arg0, ...);
- int _RTLENTRY _EXPFUNC execv(const char * __path, char * const * __argv);
- int _RTLENTRY _EXPFUNC execve(const char * __path, char * const * __argv,
- char * const * __env);
- int _RTLENTRY _EXPFUNC execvp(const char * __path, char * const * __argv);
- int _RTLENTRY _EXPFUNC execvpe(const char * __path, char * const * __argv,
- char * const * __env);
- void _RTLENTRY _EXPFUNC exit(int __status);
- void _RTLENTRY _EXPFUNC _exit(int __status);
- int _RTLENTRY _EXPFUNC spawnl(int __mode, const char * __path, const char * __arg0, ...);
- int _RTLENTRY _EXPFUNC spawnle(int __mode, const char * __path, const char * __arg0, ...);
- int _RTLENTRY _EXPFUNC spawnlp(int __mode, const char * __path, const char * __arg0, ...);
- int _RTLENTRY _EXPFUNC spawnlpe(int __mode, const char * __path, const char * __arg0, ...);
- int _RTLENTRY _EXPFUNC spawnv(int __mode, const char * __path, char * const * __argv);
- int _RTLENTRY _EXPFUNC spawnve(int __mode, const char * __path, char * const * __argv,
- char * const * __env);
- int _RTLENTRY _EXPFUNC spawnvp(int __mode, const char * __path, char * const * __argv);
- int _RTLENTRY _EXPFUNC spawnvpe(int __mode, const char * __path, char * const * __argv,
- char * const * __env);
- int _RTLENTRY _EXPFUNC system(const char * __command);
-
-
- int _RTLENTRY _EXPFUNC _wexecl(const wchar_t * __path, const wchar_t * __arg0, ...);
- int _RTLENTRY _EXPFUNC _wexecle(const wchar_t * __path, const wchar_t * __arg0, ...);
- int _RTLENTRY _EXPFUNC _wexeclp(const wchar_t * __path, const wchar_t * __arg0, ...);
- int _RTLENTRY _EXPFUNC _wexeclpe(const wchar_t * __path, const wchar_t * __arg0, ...);
- int _RTLENTRY _EXPFUNC _wexecv(const wchar_t * __path, wchar_t * const * __argv);
- int _RTLENTRY _EXPFUNC _wexecve(const wchar_t * __path, wchar_t * const * __argv,
- wchar_t * const * __env);
- int _RTLENTRY _EXPFUNC _wexecvp(const wchar_t * __path, wchar_t * const * __argv);
- int _RTLENTRY _EXPFUNC _wexecvpe(const wchar_t * __path, wchar_t * const * __argv,
- wchar_t * const * __env);
- int _RTLENTRY _EXPFUNC _wspawnl(int __mode, const wchar_t * __path, const wchar_t * __arg0, ...);
- int _RTLENTRY _EXPFUNC _wspawnle(int __mode, const wchar_t * __path, const wchar_t * __arg0, ...);
- int _RTLENTRY _EXPFUNC _wspawnlp(int __mode, const wchar_t * __path, const wchar_t * __arg0, ...);
- int _RTLENTRY _EXPFUNC _wspawnlpe(int __mode, const wchar_t * __path, const wchar_t * __arg0, ...);
- int _RTLENTRY _EXPFUNC _wspawnv(int __mode, const wchar_t * __path, wchar_t * const * __argv);
- int _RTLENTRY _EXPFUNC _wspawnve(int __mode, const wchar_t * __path, wchar_t * const * __argv,
- wchar_t * const * __env);
- int _RTLENTRY _EXPFUNC _wspawnvp(int __mode, const wchar_t * __path, wchar_t * const * __argv);
- int _RTLENTRY _EXPFUNC _wspawnvpe(int __mode, const wchar_t * __path, wchar_t * const * __argv,
- wchar_t * const * __env);
- int _RTLENTRY _EXPFUNC _wsystem(const wchar_t * __command);
-
-
- #if defined(__MT__)
-
- unsigned long _RTLENTRY _EXPFUNC _beginthread (void (_USERENTRY *__start)(void *),
- unsigned __stksize, void *__arg);
- unsigned long _RTLENTRY _EXPFUNC _beginthreadNT(void (_USERENTRY *__start)(void *),
- unsigned __stksize, void *__arg,
- void *__security_attr,
- unsigned long __create_flags,
- unsigned long *__thread_id);
-
- void _RTLENTRY _EXPFUNC _endthread (void);
-
- /* Support for MSC or MFC source code */
- #define _beginthreadex(security,stksize,startaddr,arglist,initflag,threadaddr)\
- _beginthreadNT( \
- ((void(_USERENTRY *)(void *))startaddr), \
- (stksize), \
- (arglist), \
- (security), \
- ((unsigned long)initflag), \
- ((unsigned long *)threadaddr) \
- ) /* End of _beginthreadex definition */
- #define _endthreadex(a) _endthread()
-
- #endif /* __MT__ */
-
- int _RTLENTRY _EXPFUNC cwait (int *__term_stat, int __pid, int __action);
- int _RTLENTRY _EXPFUNC wait (int *__term_stat);
-
- #ifdef __cplusplus
- }
- #endif
-
-
- #if !defined(RC_INVOKED)
-
- #if defined(__STDC__)
- #pragma warn .nak
- #endif
-
- #endif /* !RC_INVOKED */
-
- #ifdef __cplusplus
- } // std
- #endif /* __cplusplus */
-
- #endif /* __PROCESS_H */
-
- #if defined(__cplusplus) && !defined(__USING_CNAME__) && !defined(__PROCESS_H_USING_LIST)
- #define __PROCESS_H_USING_LIST
- using std::getpid;
- using std::abort;
- using std::_cexit;
- using std::_c_exit;
- using std::execl;
- using std::execle;
- using std::execlp;
- using std::execlpe;
- using std::execv;
- using std::execve;
- using std::execvp;
- using std::execvpe;
- using std::exit;
- using std::_exit;
- using std::spawnl;
- using std::spawnle;
- using std::spawnlp;
- using std::spawnlpe;
- using std::spawnv;
- using std::spawnve;
- using std::spawnvp;
- using std::spawnvpe;
- using std::system;
- using std::_wexecl;
- using std::_wexecle;
- using std::_wexeclp;
- using std::_wexeclpe;
- using std::_wexecv;
- using std::_wexecve;
- using std::_wexecvp;
- using std::_wexecvpe;
- using std::_wspawnl;
- using std::_wspawnle;
- using std::_wspawnlp;
- using std::_wspawnlpe;
- using std::_wspawnv;
- using std::_wspawnve;
- using std::_wspawnvp;
- using std::_wspawnvpe;
- using std::_wsystem;
- #if defined(__MT__)
- using std::_beginthread;
- using std::_beginthreadNT;
- using std::_endthread;
- #endif // __MT__
- using std::cwait;
- using std::wait;
- #endif /* __USING_CNAME__ */
-
-
-